#!/bin/bash
#
# chkconfig: - 01 01
# description: set the initial hardware state on QM57

### BEGIN INIT INFO
# Provides: hwinit
# Required-Start:
# Required-Stop:
# Should-Start:
# Should-Stop:
# Default-Start:  2 3 5
# Default-Stop:   0 1 6
# Short-Description: set initial state of HW on QM57
# Description: set initial state of HW on QM57
### END INIT INFO

start() {
	/bin/qm57init
}

status() {
 exit
}

stop() {
 exit
}

# See how we were called.
case "$1" in
  start)
	start
	;;
  stop)
	stop
	;;
  status)
	status
	;;
  restart|force-reload)
	stop
	start
	;;
  *)
	echo $"Usage: $0 {start|stop|status|restart|force-reload}"
	exit 2
esac
